home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / pdc / sample / hello.c < prev    next >
C/C++ Source or Header  |  1990-04-06  |  82b  |  8 lines

  1. #include <stdio.h>
  2.  
  3. char *string = "hello\n";
  4.  
  5. main () {
  6.     printf("%s", string);
  7. }
  8.